Skip to main content

Accessing Tags through .NET API Call

This Article outlines how to extract tag data from a report object in the Fluent .NET Engine using Report.getTagTree() API call

In order to get the xml tag tree, use the following method:

using (FileStream output_file = new FileStream("[PATH TO XML OUTPUT FILE]", FileMode.OpenOrCreate))
{
Report.GetTagTree(input_template, output_file, license_key);
}

The input templates must be one of the following:

  • .docx
  • .xlsx
  • .pptx